toJsonPretty method

String toJsonPretty({
  1. List<String>? columns,
  2. bool includeMissingValue = false,
})

to json helper.

Implementation

String toJsonPretty({
  List<String>? columns,
  bool includeMissingValue = false,
}) => jsonPrettyEncode(
  toMap(columns: columns, includeMissingValue: includeMissingValue),
);