save method

Future<T> save()

Implementation

Future<T> save() async =>
    SupabaseQuery.extractSupabaseList<T>(await env.client.from(tableName(T)).upsert(this.toJson()).execute()).single;