goToRecord method
Future<R?>
goToRecord(
- BuildContext context,
- MSchemaRef ref,
- String id, {
- Map<
String, dynamic> ? others, - 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),
);
}