createAccount abstract method

  1. @POST('/accounts')
Future<Account> createAccount(
  1. @Field() String address,
  2. @Field() String password
)

Creates an account

Implementation

@POST('/accounts')
Future<Account> createAccount(
  @Field() String address,
  @Field() String password,
);