indent property
String
get
indent
Implementation
String get indent {
const encoder = JsonEncoder.withIndent(' ');
final json = jsonDecode(this);
return encoder.convert(json);
}
String get indent {
const encoder = JsonEncoder.withIndent(' ');
final json = jsonDecode(this);
return encoder.convert(json);
}