addJsonProperty method

CFUserBuilder addJsonProperty(
  1. String key,
  2. Map<String, dynamic> value, {
  3. bool isPrivate = false,
  4. bool isSession = false,
})

Add a JSON property

Implementation

CFUserBuilder addJsonProperty(String key, Map<String, dynamic> value,
    {bool isPrivate = false, bool isSession = false}) {
  return addMapProperty(key, value,
      isPrivate: isPrivate, isSession: isSession);
}