create method

Future<RType> create(
  1. CType ctype
)

Implementation

Future<RType> create(CType ctype) async {
  var newContact = await internalCreate(ctype);
  addToStream(newContact);
  return newContact;
}