goToRecord method

Future<R?> goToRecord(
  1. BuildContext context,
  2. MSchemaRef ref,
  3. String id, {
  4. Map<String, dynamic>? others,
  5. T? record,
})

Implementation

Future<R?> goToRecord(BuildContext context, MSchemaRef ref, String id,
    {Map<String, dynamic>? others, T? record}) async {
  return this.go(
    context,
    args: KeyArgs<T>.fromId(ref, id, args: others, record: record),
  );
}