toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final keyAlias = this.keyAlias;
  final keyStore = this.keyStore;
  final trustStore = this.trustStore;
  return {
    'keyAlias': ?keyAlias,
    'keyStore': ?keyStore,
    'trustStore': ?trustStore,
  };
}