toJsonStr method

String toJsonStr({
  1. Object? toEncodable(
    1. dynamic object
    )?,
})

Implementation

String toJsonStr({Object? Function(dynamic object)? toEncodable}) => json.encode(this, toEncodable: toEncodable);